diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-03-14 23:10:01 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-03-14 23:10:01 +0100 |
| commit | 74b03c33ff37d7363721bc2c33abb867dc9ea87c (patch) | |
| tree | 5846c2fa2b8619c760938fa80c81eb6b07d69015 /src/pages/g/[id].svelte | |
| parent | cbe4a5fc39533cc244a05dbd866b1cb903776863 (diff) | |
Add components to view topics and posts
Diffstat (limited to 'src/pages/g/[id].svelte')
| -rw-r--r-- | src/pages/g/[id].svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/g/[id].svelte b/src/pages/g/[id].svelte index 04fda92..754f129 100644 --- a/src/pages/g/[id].svelte +++ b/src/pages/g/[id].svelte @@ -1,6 +1,6 @@ <script> + import Tag from '$/components/tag/tag.svelte'; export let id; </script> -<h1>Tag Index.</h1> -<p>This component lists topics for tag with id: {id}</p> +<Tag id={id}/> |